<style>
* {box-sizing: border-box;}

/* Container of the toggle button */
.toggle-all-markets-container {
	position: relative;
    display: inline-block;
    float: right;
}

/* Toggle button */
.toggle-all-markets-btn {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #0e6ac3;
	  color: #dde5f4;
	  border: none;
	  border-radius: 5px;
	  padding: 5px 10px 6px 10px;
	  cursor: pointer;
	  font-size: 16px;
	  margin: 5px 5px 0px 0px;
	  transition: background-color 0.2s;
}

.toggle-all-markets-btn:hover {
  background-color: #0e6ac3; /* hover color */
}

/* Icon inside button */
.toggle-all-markets-btn i {
  pointer-events: none; /* so click goes to button */
}

}
</style>